home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?>
- <html><head><title>Hex Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03080801"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
-
- p.P1{
- }
- p.P2{
- }
- span.T1{
- font-weight:bold;}
- </style></head><body>
-
-
- <help:to-be-embedded Eid="hex" xmlns:help="http://openoffice.org/2000/help">
- <p class="Head1"><help:link Id="66486">Hex Function [Runtime]</help:link></p>
- <p class="Paragraph">Returns a string that represents the hexadecimal value of a number.</p>
- </help:to-be-embedded>
- <p class="Paragraph"><span class="T1">Syntax</span>:</p>
- <p class="Paragraph">Hex (Number) <help:key-word value="Hex" tag="kw66486_1" xmlns:help="http://openoffice.org/2000/help"/></p>
- <p class="Paragraph"><span class="T1">Return value</span>:</p>
- <p class="Paragraph">String</p>
- <p class="Paragraph"><span class="T1">Parameter</span>:</p>
- <p class="Paragraph">Number: Any numeric expression to be converted to a hexadecimal number.</p>
- <p class="P2">Example:</p>
- <p class="PropText">Sub ExampleHex</p>
- <p class="PropText">REM uses BasicFormulas in <help:productname xmlns:help="http://openoffice.org/2000/help">%PRODUCTNAME</help:productname> Calc</p>
- <p class="PropText">Dim a2, b2, c2 as String</p>
- <p class="PropText">a2 = "&H3E8"</p>
- <p class="PropText">b2 = Hex2Int(a2)</p>
- <p class="PropText">MsgBox b2</p>
- <p class="PropText">c2 = Int2Hex(b2)</p>
- <p class="PropText">MsgBox c2</p>
- <p class="PropText">End Sub</p>
- <p class="PropText"/>
- <p class="PropText"/>
- <p class="PropText">Function Hex2Int( sHex As String ) As Long</p>
- <p class="PropText"><text:tab-stop xmlns:text="http://openoffice.org/2000/text"/>REM Returns a Long-Integer from a hexadecimal value.</p>
- <p class="PropText">Hex2Int = clng( sHex )</p>
- <p class="PropText">End Function</p>
- <p class="PropText"/>
- <p class="PropText">Function Int2Hex( iLong As Long) As String</p>
- <p class="PropText"><text:tab-stop xmlns:text="http://openoffice.org/2000/text"/>REM Calculates a hexadecimal value in Integer.</p>
- <p class="PropText">Int2Hex = "&H" & Hex( iLong )</p>
- <p class="PropText">End Function</p>
- <p class="PropText"/>
- </body></html>